recursive procedure meaning in Chinese
递归过程
Examples
- The syntax analyzer has one recursive procedure for each nonterminal u .
对于每个非终结符号U,语法分析程序都有一个递归过程。 - The syntax analyzer has one recursive procedure for each nonterminal u
对于每个非终结符号u ,语法分析程序都有一个递归过程。 - Such a design presents the same problems as a single recursive procedure , but can be harder to detect and debug
此类设计所产生的问题与单个递归过程所产生的问题相同,但更难检测和调试。 - If you write a recursive procedure , you should test it very carefully to make sure it always meets some limiting condition
在编写递归过程时,应非常细心地进行测试,以确保它总是能满足某些限制条件。 - You must design a recursive procedure to test for at least one condition that can terminate the recursion , and you must also handle the case where no such condition is satisfied within a reasonable number of recursive calls
您在设计一个递归过程时,必须至少测试一个可以终止此递归的条件,并且还必须对在合理的递归调用次数内未满足此类条件的情况进行处理。